*{
    margin: 0;
    padding: 0;
}

a{
    text-decoration: none;
    color: white;
}

p a:hover{
    text-decoration: underline;
}

html{
    scroll-behavior: smooth;
}

.desktop{
    display: none;
}

/* Navigation Bar*/

.navbar{
    width: 100%;
    z-index: 10;
    top: 0%;
    position: fixed;
    padding: 0.2em;
    box-shadow: 0px 1px 5px #dc3545;
}

.navbar-expand-lg{
    justify-content: space-between;
}

.navbar-brand{
    width: 4em;
    margin: 0;
}

.navbar-brand img{
    width: 100%;
}

.navbar-brand h1{
    font-size: 1.5em;
    color:#dc3545;
    font-family: arial;
    font-weight: bold;
    margin:0;
}

.logo{
    width: 100%;
}

/* Hero Section */
#hero{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: fit-content;
    gap: 2em;
    background:
        linear-gradient(
            rgba(0, 0, 0, 0.4), 
            rgba(0, 0, 0, 0.4)
        ), 
        url(../images/SalonInterior3.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position:  70% 0%;
    padding: 1em;
}

.unisex-logo-container{
    margin-top: 5em;
    width: clamp(2em, 50%, 25em);
    backdrop-filter: contrast(20%);
    -webkit-backdrop-filter: contrast(20%);
    padding: 1em;
    border-radius: 100px;
}

.unisex-logo{
    width: 100%;
}

.ig-link img{
    width: 29px;
    margin-top: 10px;
}

#hero p{
    color: white;
    text-align: center;
}

#hero h1{
    text-align: center;
    color: white;
}

#hero hr{
    color: white;
}

/* Services Section*/
#services{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 1em;
}

.scissors{
    display: block;
    width: 100%;
    height: 6em;
    background: url(../images/ScissorsHorizontal.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}

.services{
    background-color: #dc354627;
    border-radius: 10px;
    padding: 0.5em;
    padding-left: 1em;
}

.services-container{
    width: clamp(2em, 100%, 25em);
}


/* About Section */
#about{
    display: flex;
    flex-direction: column;
    background-color: #dc3546;
    height: fit-content
}

#about p{
    color: white;
}

.mission{
    width: 100%;
    padding: 1em;
}

.salon-pics{
    width: 100%;
    display: flex;
    flex-direction: column;
}

.salon-pics img{
    width: 100%;
    object-fit: cover;
}

.salon-pic1{
    object-position:  left center;
}

.salon-pic2{
    object-position: center center;
}

/* Gallery Section */
#gallery{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#carousel-container{
    width: 100%;
    /*border: 0.5em solid #2f3132ce;*/
}

.carousel-item img{
    height: 35rem;
    object-fit: cover;
    object-position: center center;
}
  
.carousel-caption{
    text-align: center;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 2rem;
    border-radius: 2rem;
}

/* Nails Section */
#nails{
    background-color: white;
    padding: 1em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1em;
}

.nails-gallery{
    display: grid;
    height: fit-content;
    width: 100%;
    grid-template-columns: repeat(auto-fill, minmax(1em, 9em));
    grid-gap: 1em;
    align-items: center;
    justify-content: center;
  }

.nails-gallery img {
    height: 9em;
    width: 100%;
    object-fit: cover;
    filter: drop-shadow(1px 1px 1px rgb(170, 170, 170));
}

/* Job Post */
#job-post{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: fit-content;
    margin-bottom: 1em;
}

.black-sash{
    position:absolute;
    top: 25%;
    background-color: black;
    height: 50%;
    width: 100%;
    z-index: -1;
}

.post{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.5em;
    color: white;
    background-color: #702963;
    border-radius: 15px;
    padding: 1.5em;
    width: clamp(2em, 80%, 60em);
}

.post p{
    font-size: 1.2em;
    margin: 0;
    text-align: center;
}

.post h1{
    margin: 0;
    text-align: center;
}

/* Footer */
.footer-logo-container{
    padding: 2em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo{
    width: clamp(4em, 100%, 30em);
}

.google-map{
    width: 100%;
    height: 300px;
}

.contact-info{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    background-color:rgb(43, 43, 43);
    margin: 0;
    padding: 1em;
}

.contact-info hr{
    width: 100%;
    color: white;
}

.contact-info pre{
    font-size: 1.2em;
    margin-bottom: 10px;
}

#copyright{
    background-color: black;
    padding: 0.5em;
}

.copyright{
    text-align: center;
    color:white;
}

@media only screen and (min-width: 600px) {
    #hero{
        background:
        linear-gradient(
            rgba(0, 0, 0, 0.4), 
            rgba(0, 0, 0, 0.4)
        ), 
        url(../images/SalonInterior2.jpg);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center center;
    }

    .carousel-item img{
        height: 40rem;
        object-fit: cover;
        object-position: center center;
    }

    .nails-gallery{
        grid-template-columns: repeat(auto-fill, minmax(1em, 10em));
      }
    
    .nails-gallery img {
        height: 10em;
    }
}

@media only screen and (min-width: 1000px) {
    .mobile{
        display: none;
    }

    .desktop{
        display: block;
    }
    
    .navbar-brand{
        width: 25em;
    }

    #navbarSupportedContent{
        max-width: fit-content;
    }

    .nav-item a{
        font-size: 1.5em;
    }

    #hero{
        height: 100vh;
        gap: 8em;
        flex-direction: row;
        justify-content: center;
    }

    .jumbotron{
        max-width: 40em;
    }

    #hero p{
        font-size: 1.5em;
    }
    
    #hero h1{
        font-size: 5em;
    }

    #services-and-gallery{
        display: flex;
        flex-direction: row;
        border: solid 1em black;
    }

    #services{
        flex-direction: row;
    }
    
    #services p{
        font-size: 1.1em;
    }

    #services h6{
        font-size: 1.1em;
    }

    .scissors{
        width: 15em;
        height: 35em;
        background: url(../images/ScissorsVertical.png);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center center;
    }

    #gallery{
        width: 50em;
        margin-left: 0em;
    }

    #nails{
        background-color: black;
    }

    #about{
        flex-direction: row-reverse;
    }

    .mission{
        width: 60%;
        padding: 2em;
    }

    .salon-pics{
        width: 40%;
        flex-direction: row;
    }

    .salon-pics img{
        width: 50%;
    }

    #find-us{
        width: 100%;
        display: flex;
    }

    #map{
        width: 100%;
        height:auto;
    }

    .google-map{
        height: 100%;
    }

    .contact-info{
        width: 50em;
    }
}